From: Keir Fraser Date: Mon, 6 Jul 2009 10:47:02 +0000 (+0100) Subject: blktap2: seperate blktap1/blktap2 disk types X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13650 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=158299ee06fe1a8753a565ba542643c80bd72643;p=xen.git blktap2: seperate blktap1/blktap2 disk types * seperate blktap1/blktap2 disk types * use blktap1 when driver is not in explicit list of blktap2 drivers, * rather than current check against list of blktap1 only drivers * remove 'tapdisk' disk type (it is not a tapdisk disk type) and fix * tapdisk disk type check in XenConfig Signed-off-by: Ryan O'Connor --- diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index fdff3adec3..dc3e7501d4 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -1379,9 +1379,13 @@ class XendConfig(dict): else: # Save uname for next domain start. dev_info['required_uname'] = dev_info['uname'] - if dev_info['uname'].split(':')[1] not in blktap_disk_types: + tap_disk_type = dev_info['uname'].split(':')[1] + # tapdisk uname may be 'tap:' or 'tap:tapdisk:' + if tap_disk_type == 'tapdisk': + tap_disk_type = dev_info['uname'].split(':')[2] + if tap_disk_type not in blktap_disk_types: raise XendConfigError("tap:%s not a valid disk type" % - dev_info['uname'].split(':')[1]) + tap_disk_type) if dev_type == 'vif': if not dev_info.get('mac'): diff --git a/tools/python/xen/xend/server/BlktapController.py b/tools/python/xen/xend/server/BlktapController.py index a05667c481..40a6bfcaa0 100644 --- a/tools/python/xen/xend/server/BlktapController.py +++ b/tools/python/xen/xend/server/BlktapController.py @@ -13,17 +13,24 @@ TAPDISK_BINARY = '/usr/sbin/tapdisk2' TAPDISK_DEVICE = '/dev/xen/blktap-2/tapdev' TAPDISK_CONTROL = TAPDISK_SYSFS + '/blktap' -blktap_disk_types = [ +blktap1_disk_types = set([ 'aio', 'sync', 'vmdk', 'ram', 'qcow', 'qcow2', - 'vhd', 'ioemu', - 'tapdisk', - ] + ]) + +blktap2_disk_types = set([ + 'aio', + 'ram', + 'qcow', + 'vhd', + ]) + +blktap_disk_types = blktap1_disk_types | blktap2_disk_types def doexec(args, inputtext=None): """Execute a subprocess, then return its return code, stdout and stderr""" @@ -151,7 +158,7 @@ class Blktap2Controller(BlktapController): if typ in ('tap'): if subtyp in ('tapdisk'): - if params in ('ioemu', 'qcow2', 'vmdk', 'sync') or not blktap2_installed: + if params not in blktap2_disk_types or not blktap2_installed: # pass this device off to BlktapController log.warn('WARNING: using deprecated blktap module') self.deviceClass = 'tap'